home *** CD-ROM | disk | FTP | other *** search
/ World Tours: Brazil / WorldTours: Brazil.iso / mac / content / main.dir / 00106_Script_showHideNextQuiz < prev    next >
Text File  |  2007-04-22  |  562b  |  26 lines

  1. global curQuesNum,QuestionUsed
  2.  
  3. on beginsprite
  4.   check()
  5. end
  6.  
  7. on mouseup
  8.   check()
  9. end
  10.  
  11. on check
  12.   if curQuesNum=1 then
  13.     sprite(the currentspriteNum-2).blend=0
  14.     sprite(the currentspriteNum-3).blend=0
  15.   else
  16.     sprite(the currentspriteNum-2).blend=100
  17.     sprite(the currentspriteNum-3).blend=100
  18.   end if
  19.   if curQuesNum=QuestionUsed then
  20.     sprite(the currentspriteNum-1).blend=0
  21.     sprite(the currentspriteNum).blend=0
  22.   else
  23.     sprite(the currentspriteNum-1).blend=100
  24.     sprite(the currentspriteNum).blend=100
  25.   end if
  26. end